import { z } from 'zod'; export declare namespace CreateWithdrawalCommand { const RequestCreateWithdrawalSchema: z.ZodObject<{ methodId: z.ZodNumber; account: z.ZodString; amount: z.ZodNumber; paymentId: z.ZodString; }, "strip", z.ZodTypeAny, { methodId: number; amount: number; paymentId: string; account: string; }, { methodId: number; amount: number; paymentId: string; account: string; }>; type ICreateWithdrawal = z.infer; type ICreateWithdrawalInput = z.input; const ResponseCreateWithdrawalSchema: z.ZodObject<{ type: z.ZodEnum<["success", "error"]>; data: z.ZodObject<{ id: z.ZodNumber; }, "strip", z.ZodTypeAny, { id: number; }, { id: number; }>; message: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "success" | "error"; data: { id: number; }; message?: string | undefined; }, { type: "success" | "error"; data: { id: number; }; message?: string | undefined; }>; type ICreateWithdrawalResponse = z.infer; } //# sourceMappingURL=create-withdrawal.command%20copy.d.ts.map